1 using System;
2 using
System.Collections.Generic;
3 using
System.ComponentModel;
4 using
System.Data;
5 using
System.Drawing;
6 using
System.Linq;
7 using
System.Text;
8 using
System.Threading.Tasks;
9 using
System.Windows.Forms;
10
11 namespace
MilkDairyManagementSystemCSharp
12 {
13     
public partial class Form1 : Form
14     {
15         
public Form1()
16         {
17             InitializeComponent();
18         }
19
20         
private void button1_Click(object sender, EventArgs e)
21         {
22             
if (textBox1.Text == "Neeta Kadam" || textBox2.Text == "kneeta")
23             {
24                 MessageBox.Show(
"You are logged in successfully..");
25                 
this.Visible = false;
26                 Home obj1 =
new Home();
27                 obj1.ShowDialog();
28                 textBox1.Text =
"";
29                 textBox2.Text =
"";
30             }
31             
else
32             {
33                 MessageBox.Show(
"Invalid Username Or Password.");
34             }
35
36         }
37
38         
private void button2_Click(object sender, EventArgs e)
39         {
40             textBox1.Text =
"";
41             textBox2.Text =
"";
42         }
43     }
44 }


Gõ tìm kiếm nhanh...